#main-header,
section {
    padding: 0 10px
}

.box,
.box__top {
    position: relative
}

#prize-wrapid,
.box__item {
    left: 50%;
    position: absolute
}

#prize-wrapid,
.product-list-item {
    text-align: center
}

#congrats,
html {
    font-size: 14px
}

body {
    background-color: #0b6efd;
    font-weight: 400;
    font-family: Tahoma, sans-serif
}

img {
    max-width: 100%;
    height: auto
}

p {
    line-height: 1.4;
    margin-bottom: 10px
}

#verification,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.survey__question__num,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700
}

h6 {
    font-size: 16px
}

:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1
}

.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animate__animated.animate__fast {
    -webkit-animation-duration: .5s;
    animation-duration: .5s
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.animate__fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.animate__fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

.animate__zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}

@-webkit-keyframes temblor_inf {
    0% {
        -webkit-transform: translate(1px, 1px) rotate(0);
        transform: translate(1px, 1px) rotate(0)
    }

    10% {
        -webkit-transform: translate(-1px, -2px) rotate(-1deg);
        transform: translate(-1px, -2px) rotate(-1deg)
    }

    20% {
        -webkit-transform: translate(-3px, 0) rotate(1deg);
        transform: translate(-3px, 0) rotate(1deg)
    }

    30% {
        -webkit-transform: translate(3px, 2px) rotate(0);
        transform: translate(3px, 2px) rotate(0)
    }

    40% {
        -webkit-transform: translate(1px, -1px) rotate(1deg);
        transform: translate(1px, -1px) rotate(1deg)
    }

    50% {
        -webkit-transform: translate(-1px, 2px) rotate(-1deg);
        transform: translate(-1px, 2px) rotate(-1deg)
    }

    60% {
        -webkit-transform: translate(-3px, 1px) rotate(0);
        transform: translate(-3px, 1px) rotate(0)
    }

    70% {
        -webkit-transform: translate(3px, 1px) rotate(-1deg);
        transform: translate(3px, 1px) rotate(-1deg)
    }

    80% {
        -webkit-transform: translate(-1px, -1px) rotate(1deg);
        transform: translate(-1px, -1px) rotate(1deg)
    }

    90% {
        -webkit-transform: translate(1px, 2px) rotate(0);
        transform: translate(1px, 2px) rotate(0)
    }

    100% {
        -webkit-transform: translate(1px, -2px) rotate(-1deg);
        transform: translate(1px, -2px) rotate(-1deg)
    }
}

@keyframes temblor_inf {
    0% {
        -webkit-transform: translate(1px, 1px) rotate(0);
        transform: translate(1px, 1px) rotate(0)
    }

    10% {
        -webkit-transform: translate(-1px, -2px) rotate(-1deg);
        transform: translate(-1px, -2px) rotate(-1deg)
    }

    20% {
        -webkit-transform: translate(-3px, 0) rotate(1deg);
        transform: translate(-3px, 0) rotate(1deg)
    }

    30% {
        -webkit-transform: translate(3px, 2px) rotate(0);
        transform: translate(3px, 2px) rotate(0)
    }

    40% {
        -webkit-transform: translate(1px, -1px) rotate(1deg);
        transform: translate(1px, -1px) rotate(1deg)
    }

    50% {
        -webkit-transform: translate(-1px, 2px) rotate(-1deg);
        transform: translate(-1px, 2px) rotate(-1deg)
    }

    60% {
        -webkit-transform: translate(-3px, 1px) rotate(0);
        transform: translate(-3px, 1px) rotate(0)
    }

    70% {
        -webkit-transform: translate(3px, 1px) rotate(-1deg);
        transform: translate(3px, 1px) rotate(-1deg)
    }

    80% {
        -webkit-transform: translate(-1px, -1px) rotate(1deg);
        transform: translate(-1px, -1px) rotate(1deg)
    }

    90% {
        -webkit-transform: translate(1px, 2px) rotate(0);
        transform: translate(1px, 2px) rotate(0)
    }

    100% {
        -webkit-transform: translate(1px, -2px) rotate(-1deg);
        transform: translate(1px, -2px) rotate(-1deg)
    }
}

.temblor_inf {
    -webkit-animation: 2s infinite temblor_inf;
    animation: 2s infinite temblor_inf
}

@-webkit-keyframes fadeInDownSmall {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -40px 0);
        transform: translate3d(0, -40px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInDownSmall {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -40px 0);
        transform: translate3d(0, -40px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.animate__fadeInDown--small {
    -webkit-animation-name: fadeInDownSmall;
    animation-name: fadeInDownSmall
}

@-webkit-keyframes fadeOutUpSmall {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -40px, 0);
        transform: translate3d(0, -40px, 0)
    }
}

@keyframes fadeOutUpSmall {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -40px, 0);
        transform: translate3d(0, -40px, 0)
    }
}

.animate__fadeOutUp--small {
    -webkit-animation-name: fadeOutUpSmall;
    animation-name: fadeOutUpSmall
}

@-webkit-keyframes rotateIn {
    from {
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes rotateIn {
    from {
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.animate__rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center
}

.btn-primary {
    background-color: #0b6efd !important;
    border-color: #0b6efd !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important
}

.comment,
.section-comments-header {
    background-color: #eeeff4;
    padding: 10px
}

.btn-primary:hover {
    background-color: #0055e4 !important;
    border-color: #0055e4 !important
}

#main-header {
    background-color: #fff !important
}

.name-bar {
    padding: 12px 0;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.2
}

.name-bar__item,
.section-comments-header__item {
    width: 50%
}

.comment {
    margin-bottom: 5px
}

.comment .row,
.gutter-sm.row {
    margin-right: -5px;
    margin-left: -5px
}

.comment .row>.col,
.comment .row>[class*=col-],
.gutter-sm.row>.col,
.gutter-sm.row>[class*=col-] {
    padding-right: 5px;
    padding-left: 5px
}

.coms-comment__status {
    font-size: 11px;
    cursor: pointer;
    margin-top: 5px;
    color: #3b5998
}

.survey__question__question,
.ww-modal p {
    font-size: 15px
}

.comment__like-img {
    width: 15px;
    height: 15px
}

.comment__user-profile-photo img {
    width: 60px;
    height: 60px;
}

#prize-wrapid,
.box,
.box__item img {
    width: 100%
}

.comment__user-fullname {
    color: #3b5998;
    font-weight: 700;
    margin-bottom: 10px
}

.section-comments-header {
    margin-bottom: 5px
}

.survey__question__answer-button,
.survey__question__answer-button:hover {
    border: 2px solid #f0f0f0 !important;
    background-color: #0b6efd !important
}

.survey {
    padding: 15px 10px 10px
}

.survey__question__answer-button {
    display: block;
    width: 100%;
    margin: 5px 0;
    padding: 5px;
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .74) !important;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .74) !important
}

.box,
.mini-game__inner {
    margin-right: auto;
    margin-left: auto
}

.survey-questions .survey__question {
    display: none
}

.survey-questions .survey__question.show,
.survey-questions .survey__question:first-child {
    display: block
}

.survey-questions .survey__question.hidden {
    display: none !important
}

.mini-game__inner {
    max-width: 820px;
    padding-left: 5%;
    padding-right: 5%
}

@media (max-width:320px) {
    .mini-game__inner {
        padding-left: 0;
        padding-right: 0
    }
}

@media (max-width:767px) {

    .mini-game .box-col:nth-child(10),
    .mini-game .box-col:nth-child(11),
    .mini-game .box-col:nth-child(12) {
        display: none
    }
}

.box {
    max-width: 80%;
    margin-bottom: 12%;
    cursor: pointer;
    overflow: hidden
}

.box__center,
.box__top {
    margin-left: 2px;
    background-size: cover
}

.product-list-item__img,
.ww-modal p {
    margin-bottom: 15px
}

.box.open .box__top {
    -webkit-transform: translateY(-8%);
    -ms-transform: translateY(-8%);
    transform: translateY(-8%)
}

.box.open.has-item .box__item {
    visibility: visible;
    top: 35%
}

.box.hover-shake:hover {
    -webkit-animation: .82s cubic-bezier(.36, .07, .19, .97) both temblor;
    animation: .82s cubic-bezier(.36, .07, .19, .97) both temblor;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px
}

.box__top {
    padding-bottom: 61.9047619048%;
    background-image: url(./box-top-open.png);
    -webkit-transform: translateY(60%);
    -ms-transform: translateY(60%);
    transform: translateY(60%);
    z-index: 3;
    -webkit-transition: 1.5s cubic-bezier(.52, .2, .2, .76);
    -o-transition: 1.5s cubic-bezier(.52, .2, .2, .76);
    transition: 1.5s cubic-bezier(.52, .2, .2, .76)
}

.box__center {
    padding-bottom: 19.014084507%;
    background-image: url(./box-center-open.png);
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%)
}

.box__item {
    top: 55%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: 2s linear;
    -o-transition: 2s linear;
    transition: 2s linear;
    max-width: 80%;
    visibility: hidden;
    z-index: 1
}

#idsection-main,
.box__bottom {
    position: relative
}

.box__bottom {
    padding-bottom: 70.2702702703%;
    background-image: url(./box-btm-open.png);
    background-size: cover;
    z-index: 2
}

@media (max-width:480px) {
    .mini-game.envelope-game .mini-game__inner {
        padding-left: 0;
        padding-right: 0
    }
}

.mini-game.envelope-game .box {
    max-width: 100%;
    margin-bottom: 30%
}

@media (min-width:576px) {
    .box {
        max-width: 70%
    }

    .mini-game.envelope-game .box {
        max-width: 90%
    }
}

.mini-game.envelope-game .box.open .box__top {
    -webkit-transform: translateY(0) rotate(180deg);
    -ms-transform: translateY(0) rotate(180deg);
    transform: translateY(0) rotate(180deg)
}

.mini-game.envelope-game .box.open.has-item .box__bottom {
    z-index: 5
}

.mini-game.envelope-game .box.open.has-item .box__item {
    z-index: 4;
    visibility: visible;
    top: 15%
}

.mini-game.envelope-game .box__top {
    padding-bottom: 29.5652173913%;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: 1ms;
    -o-transition: 1ms;
    transition: 1ms
}

.mini-game.envelope-game .box__item {
    max-width: 80%;
    overflow: hidden
}

.mini-game.envelope-game .box__bottom {
    padding-bottom: 71.3043478261%
}

.mini-game.envelope-game .box__bottom-background {
    padding-bottom: 71.3043478261%;
    background-color: #cbe3f0;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0
}

.mini-game.envelope-game .box__center {
    display: none
}

@-webkit-keyframes temblor {

    10%,
    90% {
        -webkit-transform: translate3d(-1px, 0, 0);
        transform: translate3d(-1px, 0, 0)
    }

    20%,
    80% {
        -webkit-transform: translate3d(2px, 0, 0);
        transform: translate3d(2px, 0, 0)
    }

    30%,
    50%,
    70% {
        -webkit-transform: translate3d(-4px, 0, 0);
        transform: translate3d(-4px, 0, 0)
    }

    40%,
    60% {
        -webkit-transform: translate3d(4px, 0, 0);
        transform: translate3d(4px, 0, 0)
    }
}

@keyframes temblor {

    10%,
    90% {
        -webkit-transform: translate3d(-1px, 0, 0);
        transform: translate3d(-1px, 0, 0)
    }

    20%,
    80% {
        -webkit-transform: translate3d(2px, 0, 0);
        transform: translate3d(2px, 0, 0)
    }

    30%,
    50%,
    70% {
        -webkit-transform: translate3d(-4px, 0, 0);
        transform: translate3d(-4px, 0, 0)
    }

    40%,
    60% {
        -webkit-transform: translate3d(4px, 0, 0);
        transform: translate3d(4px, 0, 0)
    }
}

#verification h2,
#verification h3,
#verification h4 {
    margin: 20px 0
}

.product-list .product-list-item {
    margin-bottom: 35px
}

.product-list-item.product--disabled {
    opacity: .5
}

.product-list-item.product--disabled .product-list-item__btn-claim {
    background-color: #9a9a9a !important;
    border-color: #9a9a9a !important;
    pointer-events: none
}

@media (max-width:991px) {
    .product-list-item {
        max-width: 320px;
        margin-right: auto;
        margin-left: auto
    }
}

.product-list-item__btn-claim {
    font-weight: 700
}

.product-list-item__btn-claim.btn-rounded {
    -webkit-border-radius: 25px;
    border-radius: 25px;
    padding: 10px
}

.product-list-item__img img {
    max-width: 120px
}

.product-list-item__description {
    font-weight: 700;
    color: #565656
}

.product-list-item__features {
    padding: 0 !important;
    margin: 0 0 10px;
    list-style: none;
    font-size: 12px;
    line-height: 1.3
}

.footer-case-container-fluid,
.ww-modal {
    padding-left: 10px;
    padding-right: 10px
}

.product-list-item__name {
    font-size: 18px
}

.product-list-heading {
    margin-bottom: 25px
}

@media (min-width:992px) {
    .product-list-item__img {
        margin-bottom: 0
    }

    .product-list-item__img img {
        max-width: 180px
    }

    .product-list-item {
        text-align: left
    }
}

.main-content {
    background-color: #fff;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 10px
}

.copyright-text {
    color: #bcbcbc;
    margin: 10px 0;
    font-size: 12px
}

#prize-wrapid {
    top: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: transparent;
    max-width: 800px;
    z-index: 11
}

#prize-wrapid .iprize-img {
    width: 70%
}

#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10 !important
}

.ww-modal {
    padding-bottom: 50px;
    font-size: 16px
}

.ww-modal ol,
.ww-modal ul {
    padding-left: 25px
}

.ww-modal p {
    line-height: 1.3;
    color: #797979
}

.ww-modal .h2,
.ww-modal h2 {
    color: #575757;
    font-size: 25px;
    margin: 20px 0
}

.ww-modal .btn-lg {
    font-size: 1.25em;
    padding: .5em 1em
}

.ww-modal--md .ww-modal__inner {
    max-width: 765px
}

.ww-modal__inner {
    border: 1px solid rgba(0, 0, 0, .2);
    -webkit-border-radius: 0.3rem;
    border-radius: .3rem;
    max-width: 500px
}

#congrats p {
    color: initial;
    font-size: inherit
}

.ww-modal--reserved {
    color: #fff;
    font-size: 14px;
    padding-left: 0;
    padding-right: 0
}

.ww-modal--reserved .ww-modal-header__title {
    margin-bottom: 15px
}

.ww-modal--reserved .ww-modal__header__title__text {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700
}

.ww-modal--reserved .ww-modal-header__title__icon {
    margin-right: 10px
}

.ww-modal--reserved .ww-modal__inner {
    background-color: #000;
    padding: 0
}

.ww-modal--reserved .ww-modal__body,
.ww-modal--reserved .ww-modal__header {
    padding: 15px
}

.ww-modal--reserved .ww-modal__footer {
    background-color: #474747;
    padding: 0 15px;
    margin-top: 15px
}

.ww-modal--reserved .ww-modal__footer .modal-claim-btn {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    background-color: #efefef
}

@media (min-width:768px) {
    .ww-modal--reserved .ww-modal__footer .modal-claim-btn {
        max-width: 120px
    }
}

.text-gray {
    color: #a8a7a7 !important
}

.text-main {
    color: #000 !important
}

.text-fb {
    color: #3b5998 !important
}

.small {
    font-size: 12px !important
}